home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / STRIPRNG.CC < prev    next >
Text File  |  1993-04-04  |  336b  |  15 lines

  1. striprange(char *str,char clo,char chi)
  2. /* This will strip all occurances of the characters that fall between
  3.    char clo and chi out of the string pointed to by *str.
  4. */
  5. {
  6.    char *newstr;
  7.  
  8.    newstr = str;
  9.    while (*str) {
  10.       if ((*str > chi) | (*str < clo))
  11.      *newstr++ = *str;
  12.       str++; }
  13.    *newstr = '\0';
  14. }
  15.